home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / pascal / tpb4_src.zip / MAKE.BAT < prev    next >
DOS Batch File  |  1988-05-06  |  452b  |  23 lines

  1. @echo off
  2.  
  3. rem             This is the batch file I use to 'Make' an overlayed
  4. rem             version of TPBoard. To create a TPB.EXE file that uses
  5. rem             an overlay file valled TPBOARD.OVR, invoke it as
  6. rem             'MAKE TPB TPBOARD'. 
  7.  
  8. if %1x==x goto done
  9. if %2x==x goto done
  10.  
  11. echo on
  12.  
  13. tpc %1/m
  14. tpmap /m %1
  15. overlay %1 %2 /d > %1.dbg
  16.  
  17. erase %1.exe
  18. exepack %2.exe tpb.exe
  19. exefix %2.exe tpb.exe
  20. erase %2.exe
  21.  
  22. :done
  23.